home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 4 / FM Towns Free Software Collection 4 - Disc 1.iso / pao / towns / cdplay / src / mostype.c < prev    next >
Text File  |  1991-10-18  |  2KB  |  60 lines

  1. /* << High C V1.4 >> **********************************************************
  2. **
  3. **    Mouse Cursol 定義 ルーチン
  4. **
  5. **    1991.03.18 : CREATE
  6. **    1991.03.18 : FINISH
  7. **
  8. **    < HISTORY >
  9. **    1991.03.18 : CREATE
  10. **
  11. **    < note > : TABS = 4
  12. **
  13. **    All Rights Reserved, Copyright (C) Y.Hirata 1991.
  14. **
  15. **    Programmed by Y.Hirata ( Nifty ID : NAB03321 )
  16. **
  17. **    Spetial thanks : ただひろ(K.Shimizu)
  18. **
  19. ******************************************************************************/
  20.  
  21. #include <mos.h>
  22. #include "mostype.h"
  23.  
  24. char mostype1[66] = {    2, 16,
  25.  
  26.                         0x00, 0x00, 0x7f, 0x80, 0x7f, 0xc0, 0x7f, 0xe0,
  27.                         0x7f, 0xf0, 0x7f, 0xf8, 0x7f, 0xfc, 0x7f, 0xe0,
  28.                         0x7f, 0xe0, 0x3f, 0xe0, 0x1f, 0xc0, 0x0e, 0x00,
  29.                         0x06, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,
  30.  
  31.                         0x00, 0x7f, 0x7f, 0xbf, 0x7f, 0xdf, 0x7f, 0xef,
  32.                         0x7f, 0xf7, 0x7f, 0xfb, 0x7f, 0xfd, 0x7f, 0xe0,
  33.                         0x7f, 0xef, 0xbf, 0xef, 0xdf, 0xdf, 0xee, 0x1f,
  34.                         0xf6, 0xff, 0xfa, 0xff, 0xfc, 0xff, 0xfe, 0xff
  35.                     };
  36.  
  37. char mostype2[66] = {    2,   16,
  38.  
  39.                         0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x60, 0x00,
  40.                         0x70, 0x00, 0x78, 0x00, 0x7c, 0x00, 0x7e, 0x00,
  41.                         0x7f, 0x00, 0x7f, 0x80, 0x73, 0xc0, 0x60, 0xe0,
  42.                         0x40, 0x30, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00,
  43.  
  44.                         0x7f, 0xff, 0x3f, 0xff, 0x1f, 0xff, 0x0f, 0xff,
  45.                         0x07, 0xff, 0x03, 0xff, 0x01, 0xff, 0x00, 0xff,
  46.                         0x00, 0x7f, 0x00, 0x3f, 0x00, 0x1f, 0x0c, 0x0f,
  47.                         0x1f, 0x07, 0x3f, 0xc3, 0x7f, 0xf1, 0xff, 0xfc
  48.                     };
  49.  
  50. void mostype( int no )
  51. {
  52.     switch ( no ) {
  53.     case MOSTYPE_TEST :
  54.         MOS_type( 1,0,0,mostype1 );
  55.         break ;
  56.     case MOSTYPE_STANDARD :
  57.         MOS_type( 1,0,0,mostype2 );
  58.     }
  59. }
  60.